home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Sample Code / Snippets / Development Tools & Languages / AEGestalt 1.0 / ULabelView.h < prev    next >
Encoding:
Text File  |  1992-07-15  |  683 b   |  33 lines  |  [TEXT/MPS ]

  1. //     ULabelView.h
  2. //     Copyright © 1991-92 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the TLabelView class, used for displaying
  5. //    the labels in the leftmost view
  6. //
  7. //    <1>        khs        1.0        First final version
  8.  
  9.  
  10. #ifndef __LABELVIEW__
  11. #define __LABELVIEW__
  12.  
  13. #ifndef __AEGESTALT__
  14. #include "UAEGestalt.h"
  15. #endif
  16.  
  17.  
  18. class TLabelView : public TView
  19. {
  20. public:
  21.     TLabelView();
  22.     virtual pascal void Initialize();
  23.     virtual pascal void Draw(const VRect& area);
  24.     virtual pascal void DrawLabels();
  25.  
  26.     //    FIELDS
  27.     CStr255 fLabel1, fLabel2, fLabel3, fLabel4, fLabel5, fLabel6, fLabel7, 
  28.             fLabel8, fLabel9, fLabel10, fLabel11, fLabel12;
  29. };
  30.  
  31. #endif __LABELVIEW__
  32.  
  33.